home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Web Server / TinyWeb Server.EXE / CGITEST.ZIP / HELLO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-22  |  352 b   |  17 lines

  1. //////////////////////////////////////////////////////////////////////////
  2. //
  3. //  CGI Testing Example
  4. //
  5. //  Copyright (C) 1997 RIT Research Labs
  6. //
  7. //////////////////////////////////////////////////////////////////////////
  8.  
  9. #include <stdio.h>
  10.  
  11. void main(void)
  12. {
  13.   printf("Content-Type: text/plain\n\n");
  14.  
  15.   printf("Hello, world\n");
  16. }
  17.